/* 基本样式 */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2); /* 背景渐变 */
    color: #333;
}

/* 容器样式 */
.content {
    text-align: center;
    background: #ffffff; /* 白色背景 */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* 添加阴影 */
    border-radius: 10px; /* 圆角边框 */
    padding: 40px 20px; /* 内边距 */
    width: 90%;
    max-width: 400px;
}

/* 标题样式 */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #4a90e2; /* 蓝色标题 */
}

/* 按钮样式 */
button {
    background-color: #4a90e2; /* 按钮背景颜色 */
    color: #ffffff;           /* 按钮文字颜色 */
    border: none;
    border-radius: 5px;       /* 圆角按钮 */
    padding: 12px 24px;       /* 按钮内边距 */
    font-size: 16px;          /* 按钮文字大小 */
    margin: 10px 0;           /* 按钮之间的间距 */
    width: 100%;              /* 按钮宽度 */
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* 按钮阴影 */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* 动画效果 */
    cursor: pointer;
}

/* 鼠标悬停效果 */
button:hover {
    transform: scale(1.05); /* 鼠标悬停时放大 */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* 阴影增强 */
}

